Let's load a dataset on the population of Bilbao in 2018.
if (!file.exists("neighborhoods.csv"))
{
download.file("http://www.bilbao.eus/bilbaoopendata/demografia/numero_habitantes_barrio_sexo_2018.csv",
destfile = "neighborhoods.csv")
}
population <- read.csv("neighborhoods.csv",
sep = ";", stringsAsFactors = FALSE,
encoding = "bytes")
dim(population)
## [1] 93 5